home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / quantize.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  1KB  |  31 lines

  1. #ifndef QUANTIZE_H
  2. #define QUANTIZE_H
  3. #include "util.h"
  4. /*#include "l3side.h"
  5. */
  6. void iteration_loop( lame_global_flags *gfp,
  7.                      FLOAT8 pe[2][2], FLOAT8 ms_ratio[2], 
  8.              FLOAT8 xr_org[2][2][576], III_psy_ratio ratio[2][2],
  9.              int l3_enc[2][2][576], 
  10.              III_scalefac_t scalefac[2][2]);
  11.  
  12. void VBR_iteration_loop( lame_global_flags *gfp,
  13.                      FLOAT8 pe[2][2], FLOAT8 ms_ratio[2], 
  14.              FLOAT8 xr_org[2][2][576], III_psy_ratio ratio[2][2],
  15.              int l3_enc[2][2][576], 
  16.              III_scalefac_t scalefac[2][2]);
  17.  
  18. void ABR_iteration_loop( lame_global_flags *gfp,
  19.                      FLOAT8 pe[2][2], FLOAT8 ms_ratio[2], 
  20.              FLOAT8 xr_org[2][2][576], III_psy_ratio ratio[2][2],
  21.              int l3_enc[2][2][576], 
  22.              III_scalefac_t scalefac[2][2]);
  23.  
  24. void VBR_quantize(lame_global_flags *gfp,
  25.             FLOAT8 pe[2][2], FLOAT8 ms_ener_ratio[2],
  26.             FLOAT8 xr[2][2][576], III_psy_ratio ratio[2][2],
  27.             int l3_enc[2][2][576],
  28.             III_scalefac_t scalefac[2][2]);
  29.  
  30. #endif
  31.